home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
LANG
/
C
/
LIB
/
YLIB
/
ylib_0_10
/
c
/
exmpl_obj
< prev
Wrap
Text File
|
1993-09-21
|
244b
|
17 lines
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "ymath.h"
int main(void)
{double u,s;
int t1,t2;
s = 0;
t1 = clock();
for(u=0.0;u<100.0;u+=0.001)
s += sin(u);
t2 = clock();
printf(" %d %20.12g\n",t2-t1,s);
}